home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl151s.zip / INCLUDE / CMDLINE.P < prev    next >
Text File  |  1995-10-25  |  1KB  |  41 lines

  1.  
  2. /* Protogen Version 1.06 Wednesday October 25, 1995  20:00:23 */
  3.  
  4.                              /* Srchpath.c */
  5.  
  6. char *parsepath(char *path, char *buffer);                        /* STATIC */
  7. FILE *SearchPath(char *string, char *searchpath, char *mode);
  8.  
  9.                                /* Args.c */
  10.  
  11. void remove_arg(int pos, int *count, char *list[]);               /* STATIC */
  12. BOOL cmatch(char t1, char t2);                                    /* STATIC */
  13. int scan_args(char *string, int index, char *arg);                /* STATIC */
  14. BOOL parse_args(int *argc, char *argv[], BOOL case_sensitive);
  15.  
  16.                                /* Usage.c */
  17.  
  18. void banner( char *fmt, ... );
  19. void usage( char *prog_name);
  20.  
  21.                                 /* Ext.c */
  22.  
  23. void AddExt(char *buffer, char *ext);
  24. void StripExt(char *buffer);
  25. void EXEPath(char *buffer, char*filename);
  26.  
  27.                                /* Fatal.c */
  28.  
  29. void fatal( char *fmt, ... );
  30.  
  31.                                /* File.c */
  32.  
  33. BOOL SetDir(char *dir);
  34. BOOL SetDrive(int drive);
  35. void ParseDir(char *spec, int *drive, char **dir, char **file);
  36. char *FirstFile(char *spec);
  37. char *NextFile(void);
  38. char *NewName( char *spec);
  39. int FileRecurse( int count , char *FileNames[],
  40.         char *Text, FILEFUNC routine, char *ext, BOOL backup );
  41.